home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11047 / 11047.xpi / content / clipfish2mp3.js next >
Text File  |  2009-06-10  |  959b  |  35 lines

  1. // ==UserScript==
  2. // @name           Clipfish 2 MP3
  3. // @description    Adds an option to download and convert Clipfish videos.
  4. // @namespace      http://googlesystem.blogspot.com
  5. // @include        http://*.clipfish.de/*video/*
  6. // @include        http://clipfish.de/*video/*
  7. // @version        0.3
  8. // ==/UserScript==
  9.  
  10. (function () {
  11.  
  12.  
  13.  
  14.   if (document.getElementById('convert-clipfish-video')) return;
  15.  
  16.  
  17.   
  18.  
  19.   
  20.   
  21.   
  22.   //if (video_id==null) return;
  23.  
  24.    var clipfish2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL); 
  25.    
  26.    var div_embed = document.getElementById('cf-player-social');
  27.    if (div_embed) {
  28.       div_embed.innerHTML = div_embed.innerHTML + '<div style=\'float: right;\'><span id=\'convert-clipfish-video\'> <a  href=\''+clipfish2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span></div>';      
  29.   }
  30.  
  31.  
  32.  
  33.  
  34.   
  35. })();